home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games Extra 1996 September
/
Amiga Games Extra CD-ROM 9-1996.iso
/
userbox
/
publicdomain
/
vim-4.2
/
src
/
ascii.h
< prev
next >
Wrap
Text File
|
1996-06-09
|
786b
|
33 lines
/* vi:set ts=4 sw=4:
*
* VIM - Vi IMproved by Bram Moolenaar
*
* Do ":help uganda" in Vim to read copying and usage conditions.
* Do ":help credits" in Vim to see a list of people who contributed.
*/
/*
* Definitions of various common control characters
*/
#define NUL '\000'
#define TAB '\011'
#define NL '\012'
#define NL_STR (char_u *)"\012"
#define CR '\015'
#define ESC '\033'
#define ESC_STR (char_u *)"\033"
#define DEL 0x7f
#define CSI 0x9b
#define Ctrl(x) ((x) & 0x1f)
#define Meta(x) ((x) | 0x80)
/*
* Character that separates dir names in a path.
* For MS-DOS and WIN32 we also use the slash, the backslash causes trouble in
* a command line and the slash works fine.
*/
#define PATHSEP '/'
#define PATHSEPSTR "/"